3
תגובות
GD טקסט לא מראה
פתח
itayFO
,
<html>
<head>
</head>
<body>
<ima src="file.php">
</body>
</html>
<head>
</head>
<body>
<ima src="file.php">
</body>
</html>
<?php
$text = "writw ";
$font = 'arial.ttf';
$im = imagecreatefrompng('logo.png');
// Add the text
imagettftext($im, 5, 1, 20, 40, imagecolorallocate($im, 0, 0, 0), $font, $text);
// Set the content-type
header('Content-type: image/png');
imagepng($im);
$text = "writw ";
$font = 'arial.ttf';
$im = imagecreatefrompng('logo.png');
// Add the text
imagettftext($im, 5, 1, 20, 40, imagecolorallocate($im, 0, 0, 0), $font, $text);
// Set the content-type
header('Content-type: image/png');
imagepng($im);
היי
הקוד משום מה לא עובד לי , הוא מראה את התמונה ללא הטקסט
מה הבעיה?
3 תשובות
תנסה לדאבג. תוודא ששם הקובץ נכון וקיים, שאם אתה משנה לו את הצבע אתה עדיין לא רואה אותו.
שנה לו גודל, מיקום, תראה אם הוא מופיע. אולי אתה בכלל מצייר מחוץ לתווך.
הקוד שלך עובד אצלי ...
תנסה להוריד את הקטע הזה :
header('Content-type: image/png');
imagepng($im);
imagepng($im);
ולראות האם אתה מקבל שגיאה ואיזו שגיאה .